ComponentOne DateTimeEditors for UWP
C1DatePicker Help / C1DatePicker Quick Start / Step 1 of 3: Creating an Application with C1DatePicker Control
In This Topic
    Step 1 of 3: Creating an Application with C1DatePicker Control
    In This Topic

    In this step, you'll create a UWP-style application and add a C1DatePicker control to the window.

    Complete the following steps:

    1. In Visual Studio, Select File | New | Project.
    2. Select Templates | Visual C# | Windows | Universal. From the templates list, select Blank App (Universal Windows). Enter a Name and click OK to create your project.
    3. Open MainPage.xaml if it isn't already open, place the cursor between the <Grid> and </Grid> tags, and click once.
    4. Navigate to the Toolbox and double-click the C1DatePicker icon to add the control to the grid. The XAML markup resembles the following:
    Markup
    Copy Code
    <Grid x:Name="LayoutRoot">
    <DateTimeEditors:C1DatePicker></DateTimeEditors:C1DateTimePicker>
    </Grid>
    

    You have completed the first step of the C1DatePicker for UWP quick start. In this step, you created a project and added a C1DatePicker control to it. In the next step, you'll customize the control.

    See Also